home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / languages / fpl-v115.lha / fpl / debug / smakefile < prev   
Encoding:
Makefile  |  1994-08-06  |  2.5 KB  |  69 lines

  1. # $VER: fplfb smakefile v1.0
  2.  
  3. ########################################################################
  4. #                                                                      #
  5. # fpl.library - A shared library interpreting script langauge.         #
  6. # Copyright (C) 1992-1994 FrexxWare                                    #
  7. # Author: Daniel Stenberg                                              #
  8. #                                                                      #
  9. # This program is free software; you may redistribute for non          #
  10. # commercial purposes only. Commercial programs must have a written    #
  11. # permission from the author to use FPL. FPL is *NOT* public domain!   #
  12. # Any provided source code is only for reference and for assurance     #
  13. # that users should be able to compile FPL on any operating system     #
  14. # he/she wants to use it in!                                           #
  15. #                                                                      #
  16. # You may not change, resource, patch files or in any way reverse      #
  17. # engineer anything in the FPL package.                                #
  18. #                                                                      #
  19. # This program is distributed in the hope that it will be useful,      #
  20. # but WITHOUT ANY WARRANTY; without even the implied warranty of       #
  21. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.                 #
  22. #                                                                      #
  23. # Daniel Stenberg                                                      #
  24. # Ankdammsgatan 36, 4tr                                                #
  25. # S-171 43 Solna                                                       #
  26. # Sweden                                                               #
  27. #                                                                      #
  28. # FidoNet 2:201/328    email:dast@sth.frontec.se                       #
  29. #                                                                      #
  30. ########################################################################
  31.  
  32.  
  33. DB_TARGET = FPLdb
  34. SEND_TARGET = dbsend
  35.  
  36. LIBS = LIB:sc.lib LIB:amiga.lib
  37.  
  38. DB_OBJS = FPLdb.o
  39.  
  40. SEND_OBJS = dbsend.o
  41.  
  42. all: $(DB_TARGET) $(SEND_TARGET)
  43.  
  44. $(DB_TARGET): $(DB_OBJS)
  45.     slink with <<
  46.     TO $(DB_TARGET)
  47.     FROM LIB:c.o $(DB_OBJS)
  48.     LIB $(LIBS)
  49.     SMALLCODE
  50.     SMALLDATA
  51.     NOICONS
  52.     #STRIPDEBUG
  53.     <
  54.  
  55. $(SEND_TARGET): $(SEND_OBJS)
  56.     slink with <<
  57.     TO $(SEND_TARGET)
  58.     FROM LIB:c.o $(SEND_OBJS)
  59.     LIB $(LIBS)
  60.     SMALLCODE
  61.     SMALLDATA
  62.     NOICONS
  63.     #STRIPDEBUG
  64.     <
  65.  
  66. FPLdb.o: FPLdb.c debugmail.h /src/script.h
  67. dbsend.o: dbsend.c debugmail.h /src/script.h
  68.  
  69.